home *** CD-ROM | disk | FTP | other *** search
/ Inter.Net 55-1 / Inter.Net 55-1.iso / CBuilder / Setup / BCB / data.z / homemod.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-02-09  |  1.3 KB  |  37 lines

  1. //----------------------------------------------------------------------------
  2. //Borland C++Builder
  3. //Copyright (c) 1987, 1998 Borland International Inc. All Rights Reserved.
  4. //----------------------------------------------------------------------------
  5. //---------------------------------------------------------------------------
  6. #ifndef HomeModH
  7. #define HomeModH
  8. //---------------------------------------------------------------------------
  9. #include <Windows.hpp>
  10. #include <Messages.hpp>
  11. #include <Sysutils.hpp>
  12. #include <Classes.hpp>
  13. #include <Graphics.hpp>
  14. #include <Forms.hpp>
  15. #include <Dialogs.hpp>
  16. #include "BASEMOD.h"
  17. #include <Classes.hpp>
  18. #include <Controls.hpp>
  19. #include <ExtCtrls.hpp>
  20. #include <StdCtrls.hpp>
  21. //---------------------------------------------------------------------------
  22. class THome : public TBase
  23. {
  24. __published:
  25.     TButton *Button2;
  26.     TButton *Button3;
  27.     void __fastcall Button3Click(TObject *Sender);
  28.     void __fastcall Button2Click(TObject *Sender);
  29. private:        // private user declarations
  30. public:         // public user declarations
  31.     virtual __fastcall THome(TComponent* Owner);
  32. };
  33. //---------------------------------------------------------------------------
  34. extern THome *Home;
  35. //---------------------------------------------------------------------------
  36. #endif
  37.